home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 441 / pdmaksrc.lzh / astat.h next >
C/C++ Source or Header  |  1991-01-14  |  511b  |  18 lines

  1.     /************************************************\
  2.     *                        *
  3.     *    astat.h -    Retrofit <sys/stat.h>        *
  4.     *        for the Atari ST machines    *
  5.     *                        *
  6.     *    J.R. Bammi                    *
  7.     *                        *
  8.     \************************************************/
  9.  
  10. struct    stat
  11. {
  12.     char    st_sp1[21];    /* Junk        */
  13.     char    st_mode;    /* File attributes */
  14.     time_t  st_mod;    /* Mod time, we use the date & time as 1 long */
  15.     long    st_size;    /* File size       */
  16.     char    st_sp2[14];    /* File name       */
  17. };
  18.